home *** CD-ROM | disk | FTP | other *** search
/ One Click 21 (Special) / OC021.iso / Juegos / King of Skeleton / King of Skeleton.swf / scripts / __Packages / Sine.as < prev    next >
Encoding:
Text File  |  2006-02-02  |  408 b   |  19 lines

  1. class Sine
  2. {
  3.    function Sine()
  4.    {
  5.    }
  6.    static function easeIn(t, b, c, d)
  7.    {
  8.       return (- c) * Math.cos(t / d * 1.5707963267948966) + c + b;
  9.    }
  10.    static function easeOut(t, b, c, d)
  11.    {
  12.       return c * Math.sin(t / d * 1.5707963267948966) + b;
  13.    }
  14.    static function easeInOut(t, b, c, d)
  15.    {
  16.       return (- c) / 2 * (Math.cos(3.141592653589793 * t / d) - 1) + b;
  17.    }
  18. }
  19.